home *** CD-ROM | disk | FTP | other *** search
- defineps DrawPoly3 (float x1,y1,x2,y2,x3,y3)
-
- 0 setgray
- x1 y1 moveto
- x2 y2 lineto
- x3 y3 lineto
- closepath
- stroke
-
- endps
-
- defineps FillPoly3 (float x1,y1,x2,y2,x3,y3,gray)
-
- gray setgray
- x1 y1 moveto
- x2 y2 lineto
- x3 y3 lineto
- closepath
- fill
-
- endps
-
-
- defineps DrawPoly4 (float x1,y1,x2,y2,x3,y3,x4,y4)
-
- 0 setgray
- x1 y1 moveto
- x2 y2 lineto
- x3 y3 lineto
- x4 y4 lineto
- closepath
- stroke
-
- endps
-